home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00197_Script_CursorChange-Hand < prev    next >
Text File  |  1999-02-25  |  791b  |  28 lines

  1.   
  2.   on mouseWithin me
  3.   cursor 260
  4.   set the visibility of sprite 50 = 1
  5.     
  6.   set the loc of sprite 50 to point (the mouseh, the mousev + 50)
  7.   
  8.   if the memberNum of sprite the spriteNum of me = 236 then
  9.     set the memberNum of sprite 50  = 206
  10.   else if the memberNum of sprite the spriteNum of me = 238 then
  11.     set the memberNum of sprite 50  = 208
  12.   else if the memberNum of sprite the spriteNum of me = 240 then
  13.     set the memberNum of sprite 50  = 209
  14.   else if the memberNum of sprite the spriteNum of me = 242 then
  15.     set the memberNum of sprite 50  = 207
  16. else if the memberNum of sprite the spriteNum of me = 244 then
  17.     set the visibility of sprite 50 = 0
  18.   end if
  19.   
  20. end
  21.  
  22. on mouseLeave me
  23.   cursor -1
  24.   set the visibility of sprite 50 = 0
  25. end
  26.  
  27.  
  28.